home *** CD-ROM | disk | FTP | other *** search
/ Modeling the Dream / Modeling the Dream CD - Walkthroughs and Flybys II (1994)(Waite Group).iso / programs / source / dmpdown.bc next >
Text File  |  1994-10-31  |  3KB  |  86 lines

  1. break on
  2. if not exist \mtdtemp\medley.fli goto chkspace
  3. if not exist \mtdtemp\hellfir1.fli goto chkspace
  4. if not exist \mtdtemp\hellfir2.fli goto chkspace
  5. if not exist \mtdtemp\whirli.fli goto chkspace 
  6. if not exist \mtdtemp\morpheus.fli goto chkspace
  7. if not exist \mtdtemp\spin.fli goto chkspace
  8. if not exist \mtdtemp\crab7.fli goto chkspace 
  9. if not exist \mtdtemp\cryslog.fli goto chkspace 
  10. if not exist \mtdtemp\space.fli goto chkspace 
  11. if not exist \mtdtemp\diamonds.fli goto chkspace
  12. if not exist \mtdtemp\djhands.fli goto chkspace 
  13. if not exist \mtdtemp\takeoff.fli goto chkspace
  14. if not exist \mtdtemp\office.fli goto chkspace
  15. if not exist \mtdtemp\starship.fli goto chkspace
  16. if not exist \mtdtemp\radsat5.fli goto chkspace
  17. if not exist \mtdtemp\hexsmall.flc goto chkspace
  18. goto runhd
  19. :chkspace
  20. freedisk %!a
  21. LT %!a 130000000
  22. if errorlevel 1 goto nodown
  23. echo You have more than 130MB free on this drive!
  24. echo: 
  25. echo Press C if you would like to run the BigDemo from the CD, or
  26. echo       D to download the graphics to your hard disk for faster playback.
  27. echo: 
  28. echo Please press either C or D now: 
  29. echo:
  30. echo:
  31. :again
  32. getkey
  33. let %!t = x
  34. if errlevel 67  goto fromcd
  35. if errlevel 99  goto fromcd
  36. if errlevel 68  goto hop
  37. if errlevel 100 goto hop
  38. if %!t = x goto again
  39. :hop
  40. md \mtdtemp
  41. echo Downloading flics, please be patient
  42. echo Percentage complete is: 0%
  43. if not exist \mtdtemp\medley.fli   copy %c%\flics\medley.fli \mtdtemp
  44. echo Percentage complete is: 13%
  45. if not exist \mtdtemp\hellfir1.fli copy %c%\flics\mulholla\hellfir1.fli \mtdtemp
  46. echo Percentage complete is: 28%
  47. if not exist \mtdtemp\hellfir2.fli copy %c%\flics\mulholla\hellfir2.fli \mtdtemp
  48. echo Percentage complete is: 38%
  49. if not exist \mtdtemp\whirli.fli   copy %c%\flics\royer\whirli.fli \mtdtemp
  50. echo Percentage complete is: 43%
  51. if not exist \mtdtemp\morpheus.fli copy %c%\flics\royer\morpheus.fli \mtdtemp
  52. echo Percentage complete is: 46%
  53. if not exist \mtdtemp\spin.fli     copy %c%\flics\royer\spin.fli \mtdtemp
  54. echo Percentage complete is: 51%
  55. if not exist \mtdtemp\crab7.fli    copy %c%\flics\reimann\crab7.fli \mtdtemp
  56. echo Percentage complete is: 61%
  57. if not exist \mtdtemp\cryslog.fli  copy %c%\flics\farmer\cryslog.fli \mtdtemp
  58. echo Percentage complete is: 62%
  59. if not exist \mtdtemp\space.fli    copy %c%\flics\farmer\space.fli \mtdtemp
  60. echo Percentage complete is: 74%
  61. if not exist \mtdtemp\diamonds.fli copy %c%\flics\farmer\diamonds.fli \mtdtemp
  62. echo Percentage complete is: 76%
  63. if not exist \mtdtemp\djhands.fli  copy %c%\flics\farmer\djhands.fli \mtdtemp
  64. echo Percentage complete is: 78%
  65. if not exist \mtdtemp\takeoff.fli  copy %c%\flics\naylor\takeoff.fli \mtdtemp
  66. echo Percentage complete is: 83%
  67. if not exist \mtdtemp\office.fli   copy %c%\flics\naylor\office.fli \mtdtemp
  68. echo Percentage complete is: 93%
  69. if not exist \mtdtemp\starship.fli copy %c%\flics\guthery\starship.fli \mtdtemp
  70. echo Percentage complete is: 95%
  71. if not exist \mtdtemp\radsat5.fli  copy %c%\flics\meikle\radsat5.fli \mtdtemp
  72. echo Percentage complete is: 97%
  73. if not exist \mtdtemp\hexsmall.flc copy %c%\flics\young\hexsmall.flc \mtdtemp
  74. echo Percentage complete is: 100%
  75. cls
  76. rem will run from hd
  77. :runhd
  78. exit 0
  79. :nodown
  80. rem echo BigDemo files not found on hard disk and there is insufficient space
  81. rem echo to download them.
  82. :fromcd
  83. echo Running from the CD.....
  84. exit 1
  85.  
  86.